home *** CD-ROM | disk | FTP | other *** search
- /*
- Test of one-argument machine mnemonics.
-
- NO line of this file should generate an error.
-
- The first test in each series is short one argument.
- The last test in each series has one extra argument.
- */
- int mem;
- char *a1;
- char *pc;
- long d2, d3;
-
-
- main()
- {
- neg(*a1);
- neg(*(a1+5));
- neg(*(a1+d3+5));
- neg(*(a1+d3));
- pea(*(pc+5));
- pea(*(pc+d3+5));
- pea(*(pc+d3));
- }
-